09. Update vs FixedUpdate
When would you use Update vs FixedUpdate in an application?
SOLUTION:
- Use FixedUpdate if updating rigidbodies
- Use FixedUpdate if processing an event on a fixed interval
When would you use Update vs FixedUpdate in an application?